Change default Xen scheduler to Stephan Diestelhorst's SEDF, which can provide time...
authoriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>
Wed, 6 Jul 2005 23:16:32 +0000 (23:16 +0000)
committeriap10@freefall.cl.cam.ac.uk <iap10@freefall.cl.cam.ac.uk>
Wed, 6 Jul 2005 23:16:32 +0000 (23:16 +0000)
You can still select bvt by putting 'sched=bvt' on the Xen grub line.

Signed-off-by: ian@xensource.com
xen/common/schedule.c

index c547731302da686059105e70a832fc58a4f171cf..422f4f48aeaed772dc648b50aa2fc4536365d834 100644 (file)
@@ -38,8 +38,8 @@
 #include <xen/mm.h>
 #include <public/sched_ctl.h>
 
-/* opt_sched: scheduler - default to Borrowed Virtual Time */
-static char opt_sched[10] = "bvt";
+/* opt_sched: scheduler - default to SEDF */
+static char opt_sched[10] = "sedf";
 string_param("sched", opt_sched);
 
 #if defined(WAKE_HISTO)